home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutord.EXE / 32.C < prev    next >
C/C++ Source or Header  |  1990-09-17  |  444b  |  26 lines

  1.  
  2. /* 
  3.     There may be additional include files required depending
  4.     upon the compile product you are using. Typical compilers
  5.     include Microsoft C by Microsoft or Turbo C by Boland Int'l.
  6. */
  7. #include <stdio.h>
  8. main()
  9. {
  10.     char a='a', b='b', c='c';
  11.     examp();
  12.     examp();
  13. }
  14.  
  15. examp()
  16. {
  17.     static    char    d='0';
  18.     register int    scurry;
  19.     char a='z', b='x', c='y';
  20.  
  21.     for(scurry=0; scurry<100; scurry++) ;
  22.  
  23.     printf("d is %c\n",d);
  24.     d='d';
  25. }
  26.